home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PRINTER / LETTRIX.ARJ / LX-MENU.ASM < prev    next >
Assembly Source File  |  1985-06-20  |  912b  |  27 lines

  1. ; LX-MENU             Simulates a LETTRIX menu key-press.
  2. ;
  3. ; If you want to change a LETTRIX setting from within a batch file, you can use 
  4. ; the LX-MENU command followed by a single letter.  For example,
  5. ;
  6. ;              LX-MENU l       turns LETTRIX off, and
  7. ;              LX-MENU L       turns LETTRIX on again.
  8. ;              LX-MENU =       causes LETTRIX to ignore \ commands.
  9. ;              LX-MENU L       causes LETTRIX to acknowledge \ commands again.
  10. ;
  11. ; Below is the macro-assembler code for LX-MENU.COM
  12. ;
  13. org      100h
  14. code     segment
  15.          assume  cs:code,ds:code
  16. lx_menu  proc    near
  17.          sti                   ; Set interrupts ON
  18.          mov     ah,ds:[82h]   ; Place the character on the command line into AH
  19.          int     17h           ; Call LETTRIX
  20.          int     20h           ; Exit to DOS
  21. lx_menu  endp
  22. code     ends
  23.          end     lx_menu 
  24.  
  25.  
  26.  
  27.